home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 221_01 / toupper.c < prev   
Text File  |  1980-01-01  |  256b  |  9 lines

  1. #include stdio.h
  2. /*
  3. **  convert c to uppercase
  4. */
  5. toupper(c) char c; {
  6.   if(islower(c) & isalpha(c)) return(c-32);
  7.   else return c;
  8.   }
  9.